home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / moden / examples / exmdi22.pas < prev    next >
Pascal/Delphi Source File  |  1996-04-08  |  845b  |  42 lines

  1. unit Exmdi22;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, AdTerm, EXMDI20;
  8.  
  9. type
  10.   TForm3 = class(TForm)
  11.     procedure FormCreate(Sender: TObject);
  12.   private
  13.     { Private declarations }
  14.     ApdTerminal1 : TApdTerminal;
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form3: TForm3;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. procedure TForm3.FormCreate(Sender: TObject);
  27. begin
  28.   {Create the terminal window on the fly...}
  29.   ApdTerminal1 := TApdTerminal.Create(Parent);
  30.   ApdTerminal1.Parent := Self;
  31.   ApdTerminal1.Active := False;
  32.   ApdTerminal1.IntegralSize := isNone;
  33.   ApdTerminal1.Align := alClient;
  34.  
  35.   {...hook it up to the comport on Form1 and show it}
  36.   ApdTerminal1.ComPort := Form1.ComPort1;
  37.   ApdTerminal1.Active := True;
  38.   Show;
  39. end;
  40.  
  41. end.
  42.